home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-Sensation: Golden Games / Amiga CD-Sensation - Ausgabe 2 - Golden Games (1996)(GTI - Schatztruhe)(DE)[!].iso / Archive / Edit & Patch / civman.lha / CivMan / Install_CivManager < prev    next >
Text File  |  1992-02-26  |  3KB  |  110 lines

  1. (transcript "Installing CivManager...")
  2.  
  3. (message "Welcome To The Civilization Manager Installer\n\nThis script will add the Civilization Manager program to your CivAGA directory\n\nIt does not modify any of the original Civilization Files\n\nReqtools library is required, and this will be copied to LIBS: if the version supplied here is newer than your current version")
  4.  
  5. (if @pretend
  6.     (
  7.         (message "This is a pretend Install. All files will actually be installed in RAM:\n\nThe program will work, if you wish to test it, however to a permanent copy you must install it to your CivAGA directory, by selecting \"Install For Real\"\n\nDo not just copy the files from RAM: - This won't work.\n\nPlease select all directories as if you were doing a real installation")
  8.     (makedir "ram:libs")
  9.     )
  10. )
  11.  
  12. (set #CivAGA 
  13.     (askdir
  14.         (prompt "Please select your CivAGA directory.") 
  15.         (help @ask-dirhelp)
  16.         (default @default-dest)
  17.         (newpath)
  18.     )
  19. )
  20.  
  21.  
  22. (complete 20)
  23.  
  24. (copylib
  25.     (help @copylib-help)
  26.     (prompt "Installing ReqTools.Library...")
  27.     (source "Reqtools.library")
  28.     (if @pretend
  29.         (dest "ram:libs")
  30.         (dest "libs:")
  31.     )
  32.     (confirm)
  33.     (noposition)
  34. )
  35.  
  36. (complete 40)
  37.  
  38.  
  39. (copyfiles
  40.     (help @copyfiles-help)
  41.     (prompt "Installing CivManager")
  42.     (source "CivManager")
  43.     (noposition)
  44.     (if @pretend
  45.     (dest "RAM:")
  46.         (dest #CivAGA)
  47.     )
  48. )
  49.  
  50. (complete 50)
  51. (copyfiles
  52.     (help @copyfiles-help)
  53.     (prompt "Installing Default Icon")
  54.     (source "DefSaveIcon.info")
  55.     (if @pretend
  56.     (dest "RAM:")
  57.         (dest #CivAGA)
  58.     )    
  59. )
  60.  
  61. (complete 60)
  62.  
  63. (tooltype
  64.     (prompt "Setting Default Save ToolTypes")
  65.     (if @pretend
  66.         (dest "RAM:DefSaveIcon")
  67.         (dest (tackon #CivAGA "DefSaveIcon"))
  68.     )
  69.     (setdefaulttool (tackon #CivAGA "CivManager"))
  70.     (noposition)
  71. )
  72.  
  73. (complete 70)
  74.  
  75.  
  76.  
  77. (set #SaveDir 
  78.     (askdir
  79.         (prompt "Please select your the directory you wish the saved game fileselector to open in:") 
  80.         (help @ask-dirhelp)
  81.         (default #CivAGA)
  82.         (newpath)
  83.     )
  84. )
  85.  
  86. (rename (tackon #CivAGA "CivilizationAGA.info") (tackon #CivAGA "CivManager.info"))
  87.  
  88.     
  89.  
  90. (tooltype
  91.     (prompt "Setting ToolTypes")
  92.     (if @pretend
  93.     (dest "RAM:CivManager")
  94.     (dest (tackon #CivAGA "CivManager"))
  95.     )
  96.     (settooltype "DIR" #SaveDir)
  97.     (settooltype "CIV" #CivAGA)
  98.     (settooltype "FONTS" (tackon #CivAGA "Fonts"))
  99.     (noposition)
  100.     (safe)
  101. )
  102.  
  103.  
  104. (complete 100)
  105.  
  106. (if @pretend    
  107.     (exit "Civilization Manager Now Suvessfully Installed in RAM: - Double click it's icon to test it." (quiet))
  108.     (exit "Civilization Manager Now Sucessfully Installed in your CivAGA directory - Double click the icon to run it." (quiet))
  109. )
  110.